One-Step Equations (Addition and Subtraction)
Introduction
One-step equations are the simplest type of algebraic equations.
They involve only one operation, such as adding or subtracting a number.
Your goal is to “undo” that operation to find the value of the unknown.
This article assumes you already understand basic arithmetic (adding, subtracting, and working with negative numbers).
What Is an Equation?
- An equation is a mathematical statement that two things are equal.
- It always contains an equals sign $=$.
- Example:
In these examples, $x$ and $y$ are unknowns—numbers we want to find.
Inverse Operations
To solve an equation, we use inverse operations—operations that undo each other:
- Addition ↔ Subtraction
- Subtraction ↔ Addition
Examples:
- The inverse of $+7$ is $-7$
- The inverse of $-4$ is $+4$
Using inverse operations helps us isolate the unknown.
Solving One-Step Addition Equations
When the equation has addition, we undo it with subtraction.
General idea:
- If $x + a = b$, then subtract $a$ from both sides: $$x = b - a$$
Example:
- Solve $x + 6 = 10$
- Subtract $6$ from both sides
- $x = 10 - 6 = 4$
Key points:
- Always perform the same operation on both sides.
- The goal is to get the unknown by itself.
Solving One-Step Subtraction Equations
When the equation has subtraction, we undo it with addition.
General idea:
- If $x - a = b$, then add $a$ to both sides: $$x = b + a$$
Example:
- Solve $x - 3 = 8$
- Add $3$ to both sides
- $x = 8 + 3 = 11$
Key points:
- Keep track of negative numbers carefully.
- Adding a number can make the equation simpler.
Checking Your Solution
After solving, plug your answer back into the original equation.
Example:
- Original: $x + 4 = 9$
- Solution: $x = 5$
- Check: $5 + 4 = 9$ ✔️
If both sides match, your solution is correct.
Common Mistakes to Avoid
- Forgetting to apply the operation to both sides.
- Mixing up signs (especially with negative numbers).
- Stopping before isolating the unknown.
Tips:
- Write each step clearly.
- Use inverse operations consistently.
- Double-check with substitution.
Calculator
Solving equations
- Solving equations is done via the $\operatorname{solveLinear}()$ function
- Note that the equation must be wrapped in quotes to stop the calculator evaluating it first
solveLinear('x + 4 = 9') solveLinear('x - 3 = 8')
Exercises
- Solve the equation: $x + 7 = 15$
- Solve the equation: $y - 4 = 9$
- Solve for $x$: $x + 12 = 3$
- Solve for $m$: $m - 10 = -2$
- Solve the equation: $k - 6 = -12$
- Solve for $x$: $x + (-5) = 8$
- Solve the equation: $p - (-3) = 7$
- Solve for $t$: $t + 9 = -4$